home *** CD-ROM | disk | FTP | other *** search
- /*
- File: MovieFile.h
-
- Contains: Movie file support for simple text application
-
- Version: GX 1.2 or later
-
- Written by: Tom Dowdy
-
- Copyright: © 1993, 1995-1997 by Apple Computer, Inc., all rights reserved.
-
- File Ownership:
-
- DRI: Tom Dowdy
-
- Other Contact: Jim Negrette
-
- Technology: Macintosh Graphics Group
-
- Writers:
-
- (dmp) Dave Polaschek
- (ted) Tom Dowdy
-
- Change History (most recent first):
-
- $Log: MovieFile.h,v $
- Revision 1.2 1998/11/11 22:28:54 wilkes
- Fixed various problems caused by the interface changes made by Nitin earlier,
- mostly involving static RoutineDescriptors...
-
- Revision 1.1.1.1 1998/03/18 22:56:10 ivory
- Initial checkin of SimpleText.
-
-
- 3 8/22/97 9:52 AM Sam Bushell
- Moved non-rez #includes into the non-rez zone.
-
- 2 8/15/97 11:07 AM Tom Dowdy
- Now builds both inside and outside of QT
-
- 1 7/28/97 11:19 AM Duane Byram
- first added to Source Safe project
-
- <3> 9/9/96 dmp staticfy local functions to eliminate warnings in MWC.
- <2> 8/28/96 ted fixing errors on printing with abort
- <1> 8/21/95 TD First checked in.
-
- */
-
- #include "SimpleText.h"
-
- #ifndef REZ
- // if building from the private interfaces, we need to include more header files
- // #ifndef NewMCActionFilterProc
- // #include "MovieController.h"
- // #include "TextMedia.h"
- // #endif
-
- struct MovieDataRecord
- {
- WindowDataRecord w;
-
- Movie theMovie;
- MovieController thePlayer;
- long searchOffset;
- };
- typedef struct MovieDataRecord MovieDataRecord, *MovieDataPtr;
- #endif
-
- #define kMovieWindowID kMovieBaseID
-